home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / misc / uk_elect.arj / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-02-11  |  988b  |  44 lines

  1. echo off
  2. cls
  3. if .%1 == . goto NO_ARG1
  4. echo UK-Elect Release 2.00 is about to be installed from drive A: onto %1
  5. goto COMMON1
  6. :NO_ARG1
  7. echo UK-Elect Release 2.00 is about to be installed from drive A: onto C:
  8. :COMMON1
  9. echo It will be installed into a directory called UKELECT, which will
  10. echo be created if necessary.
  11. echo.
  12. echo If you want to stop now then type Ctrl-C to quit.
  13. echo.
  14. echo (You can copy the .EXE files into the directory of
  15. echo  your choice and then type their names to decompress them)
  16. echo.
  17. pause
  18. if .%1 == . goto NO_ARG2
  19. %1:
  20. goto DO_COPY
  21.  
  22. :NO_ARG2
  23. c:
  24.  
  25. :DO_COPY
  26. cd\
  27. md UKELECT
  28. cd UKELECT
  29. echo Copying UK-Elect program archive into UKELECT directory..
  30. copy a:uke200.exe 
  31. echo.
  32. echo Copying UK-Elect map archive into UKELECT directory..
  33. copy a:ukem200.exe 
  34. echo.
  35. echo extracting UK-Elect program files..
  36. UKE200
  37. echo.
  38. echo extracting UK-Elect map files..
  39. UKEM200
  40. echo.
  41. echo.
  42. echo UK-Elect can now be run by typing UKELECT
  43. echo.
  44.